home *** CD-ROM | disk | FTP | other *** search
/ Isometric Game Programming with DirectX 7.0 / Isometric Game Programming.iso / source / chapter9 / isohex9_1 / dsfuncs.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-05-30  |  433 b   |  18 lines

  1. //DSFuncs
  2. #ifndef DSFUNCS_H
  3. #define DSFUNCS_H
  4.  
  5. #include <windows.h>   
  6. #include "mmsystem.h"
  7. #include "dsound.h"
  8. #include "WAVLoader.h"
  9.  
  10. ////////////////////////////////////////////////////
  11. //LPDSB Functions
  12. ////////////////////////////////////////////////////
  13.  
  14. LPDIRECTSOUNDBUFFER LPDSB_LoadFromFile(LPDIRECTSOUND lpds,LPCTSTR lpszFileName, DWORD dwFlags);
  15.  
  16. void LPDSB_Release(LPDIRECTSOUNDBUFFER* lplpdsb);
  17.  
  18. #endif